home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / FLEX_2_3 / FLEX.1 < prev    next >
Text File  |  1991-08-06  |  21KB  |  782 lines

  1. .TH FLEX 1 "26 May 1990" "Version 2.3"
  2. .SH NAME
  3. flex - fast lexical analyzer generator
  4. .SH SYNOPSIS
  5. .B flex
  6. .B [-bcdfinpstvFILT8 -C[efmF] -Sskeleton]
  7. .I [filename ...]
  8. .SH DESCRIPTION
  9. .I flex
  10. is a tool for generating
  11. .I scanners:
  12. programs which recognized lexical patterns in text.
  13. .I flex
  14. reads
  15. the given input files, or its standard input if no file names are given,
  16. for a description of a scanner to generate.  The description is in
  17. the form of pairs
  18. of regular expressions and C code, called
  19. .I rules.  flex
  20. generates as output a C source file,
  21. .B lex.yy.c,
  22. which defines a routine
  23. .B yylex().
  24. This file is compiled and linked with the
  25. .B -lfl
  26. library to produce an executable.  When the executable is run,
  27. it analyzes its input for occurrences
  28. of the regular expressions.  Whenever it finds one, it executes
  29. the corresponding C code.
  30. .LP
  31. For full documentation, see
  32. .B flexdoc(1).
  33. This manual entry is intended for use as a quick reference.
  34. .SH OPTIONS
  35. .I flex
  36. has the following options:
  37. .TP
  38. .B -b
  39. Generate backtracking information to
  40. .I lex.backtrack.
  41. This is a list of scanner states which require backtracking
  42. and the input characters on which they do so.  By adding rules one
  43. can remove backtracking states.  If all backtracking states
  44. are eliminated and
  45. .B -f
  46. or
  47. .B -F
  48. is used, the generated scanner will run faster.
  49. .TP
  50. .B -c
  51. is a do-nothing, deprecated option included for POSIX compliance.
  52. .IP
  53. .B NOTE:
  54. in previous releases of
  55. .I flex
  56. .B -c
  57. specified table-compression options.  This functionality is
  58. now given by the
  59. .B -C
  60. flag.  To ease the the impact of this change, when
  61. .I flex
  62. encounters
  63. .B -c,
  64. it currently issues a warning message and assumes that
  65. .B -C
  66. was desired instead.  In the future this "promotion" of
  67. .B -c
  68. to
  69. .B -C
  70. will go away in the name of full POSIX compliance (unless
  71. the POSIX meaning is removed first).
  72. .TP
  73. .B -d
  74. makes the generated scanner run in
  75. .I debug
  76. mode.  Whenever a pattern is recognized and the global
  77. .B yy_flex_debug
  78. is non-zero (which is the default), the scanner will
  79. write to
  80. .I stderr
  81. a line of the form:
  82. .nf
  83.  
  84.     --accepting rule at line 53 ("the matched text")
  85.  
  86. .fi
  87. The line number refers to the location of the rule in the file
  88. defining the scanner (i.e., the file that was fed to flex).  Messages
  89. are also generated when the scanner backtracks, accepts the
  90. default rule, reaches the end of its input buffer (or encounters
  91. a NUL; the two look the same as far as the scanner's concerned),
  92. or reaches an end-of-file.
  93. .TP
  94. .B -f
  95. specifies (take your pick)
  96. .I full table
  97. or
  98. .I fast scanner.
  99. No table compression is done.  The result is large but fast.
  100. This option is equivalent to
  101. .B -Cf
  102. (see below).
  103. .TP
  104. .B -i
  105. instructs
  106. .I flex
  107. to generate a
  108. .I case-insensitive
  109. scanner.  The case of letters given in the
  110. .I flex
  111. input patterns will
  112. be ignored, and tokens in the input will be matched regardless of case.  The
  113. matched text given in
  114. .I yytext
  115. will have the preserved case (i.e., it will not be folded).
  116. .TP
  117. .B -n
  118. is another do-nothing, deprecated option included only for
  119. POSIX compliance.
  120. .TP
  121. .B -p
  122. generates a performance report to stderr.  The report
  123. consists of comments regarding features of the
  124. .I flex
  125. input file which will cause a loss of performance in the resulting scanner.
  126. .TP
  127. .B -s
  128. causes the
  129. .I default rule
  130. (that unmatched scanner input is echoed to
  131. .I stdout)
  132. to be suppressed.  If the scanner encounters input that does not
  133. match any of its rules, it aborts with an error.
  134. .TP
  135. .B -t
  136. instructs
  137. .I flex
  138. to write the scanner it generates to standard output instead
  139. of
  140. .B lex.yy.c.
  141. .TP
  142. .B -v
  143. specifies that
  144. .I flex
  145. should write to
  146. .I stderr
  147. a summary of statistics regarding the scanner it generates.
  148. .TP
  149. .B -F
  150. specifies that the
  151. .ul
  152. fast
  153. scanner table representation should be used.  This representation is
  154. about as fast as the full table representation
  155. .ul
  156. (-f),
  157. and for some sets of patterns will be considerably smaller (and for
  158. others, larger).  See
  159. .B flexdoc(1)
  160. for details.
  161. .IP
  162. This option is equivalent to
  163. .B -CF
  164. (see below).
  165. .TP
  166. .B -I
  167. instructs
  168. .I flex
  169. to generate an
  170. .I interactive
  171. scanner, that is, a scanner which stops immediately rather than
  172. looking ahead if it knows
  173. that the currently scanned text cannot be part of a longer rule's match.
  174. Again, see
  175. .B flexdoc(1)
  176. for details.
  177. .IP
  178. Note,
  179. .B -I
  180. cannot be used in conjunction with
  181. .I full
  182. or
  183. .I fast tables,
  184. i.e., the
  185. .B -f, -F, -Cf,
  186. or
  187. .B -CF
  188. flags.
  189. .TP
  190. .B -L
  191. instructs
  192. .I flex
  193. not to generate
  194. .B #line
  195. directives in
  196. .B lex.yy.c.
  197. The default is to generate such directives so error
  198. messages in the actions will be correctly
  199. located with respect to the original
  200. .I flex
  201. input file, and not to
  202. the fairly meaningless line numbers of
  203. .B lex.yy.c.
  204. .TP
  205. .B -T
  206. makes
  207. .I flex
  208. run in
  209. .I trace
  210. mode.  It will generate a lot of messages to
  211. .I stdout
  212. concerning
  213. the form of the input and the resultant non-deterministic and deterministic
  214. finite automata.  This option is mostly for use in maintaining
  215. .I flex.
  216. .TP
  217. .B -8
  218. instructs
  219. .I flex
  220. to generate an 8-bit scanner.
  221. On some sites, this is the default.  On others, the default
  222. is 7-bit characters.  To see which is the case, check the verbose
  223. .B (-v)
  224. output for "equivalence classes created".  If the denominator of
  225. the number shown is 128, then by default
  226. .I flex
  227. is generating 7-bit characters.  If it is 256, then the default is
  228. 8-bit characters.
  229. .TP 
  230. .B -C[efmF]
  231. controls the degree of table compression.
  232. .IP
  233. .B -Ce
  234. directs
  235. .I flex
  236. to construct
  237. .I equivalence classes,
  238. i.e., sets of characters
  239. which have identical lexical properties.
  240. Equivalence classes usually give
  241. dramatic reductions in the final table/object file sizes (typically
  242. a factor of 2-5) and are pretty cheap performance-wise (one array
  243. look-up per character scanned).
  244. .IP
  245. .B -Cf
  246. specifies that the
  247. .I full
  248. scanner tables should be generated -
  249. .I flex
  250. should not compress the
  251. tables by taking advantages of similar transition functions for
  252. different states.
  253. .IP
  254. .B -CF
  255. specifies that the alternate fast scanner representation (described in
  256. .B flexdoc(1))
  257. should be used.
  258. .IP
  259. .B -Cm
  260. directs
  261. .I flex
  262. to construct
  263. .I meta-equivalence classes,
  264. which are sets of equivalence classes (or characters, if equivalence
  265. classes are not being used) that are commonly used together.  Meta-equivalence
  266. classes are often a big win when using compressed tables, but they
  267. have a moderate performance impact (one or two "if" tests and one
  268. array look-up per character scanned).
  269. .IP
  270. A lone
  271. .B -C
  272. specifies that the scanner tables should be compressed but neither
  273. equivalence classes nor meta-equivalence classes should be used.
  274. .IP
  275. The options
  276. .B -Cf
  277. or
  278. .B -CF
  279. and
  280. .B -Cm
  281. do not make sense together - there is no opportunity for meta-equivalence
  282. classes if the table is not being compressed.  Otherwise the options
  283. may be freely mixed.
  284. .IP
  285. The default setting is
  286. .B -Cem,
  287. which specifies that
  288. .I flex
  289. should generate equivalence classes
  290. and meta-equivalence classes.  This setting provides the highest
  291. degree of table compression.  You can trade off
  292. faster-executing scanners at the cost of larger tables with
  293. the following generally being true:
  294. .nf
  295.  
  296.     slowest & smallest
  297.           -Cem
  298.           -Cm
  299.           -Ce
  300.           -C
  301.           -C{f,F}e
  302.           -C{f,F}
  303.     fastest & largest
  304.  
  305. .fi
  306. .IP
  307. .B -C
  308. options are not cumulative; whenever the flag is encountered, the
  309. previous -C settings are forgotten.
  310. .TP
  311. .B -Sskeleton_file
  312. overrides the default skeleton file from which
  313. .I flex
  314. constructs its scanners.  You'll never need this option unless you are doing
  315. .I flex
  316. maintenance or development.
  317. .SH SUMMARY OF FLEX REGULAR EXPRESSIONS
  318. The patterns in the input are written using an extended set of regular
  319. expressions.  These are:
  320. .nf
  321.  
  322.     x          match the character 'x'
  323.     .          any character except newline
  324.     [xyz]      a "character class"; in this case, the pattern
  325.                  matches either an 'x', a 'y', or a 'z'
  326.     [abj-oZ]   a "character class" with a range in it; matches
  327.                  an 'a', a 'b', any letter from 'j' through 'o',
  328.                  or a 'Z'
  329.     [^A-Z]     a "negated character class", i.e., any character
  330.                  but those in the class.  In this case, any
  331.                  character EXCEPT an uppercase letter.
  332.     [^A-Z\\n]   any character EXCEPT an uppercase letter or
  333.                  a newline
  334.     r*         zero or more r's, where r is any regular expression
  335.     r+         one or more r's
  336.     r?         zero or one r's (that is, "an optional r")
  337.     r{2,5}     anywhere from two to five r's
  338.     r{2,}      two or more r's
  339.     r{4}       exactly 4 r's
  340.     {name}     the expansion of the "name" definition
  341.                (see above)
  342.     "[xyz]\\"foo"
  343.                the literal string: [xyz]"foo
  344.     \\X         if X is an 'a', 'b', 'f', 'n', 'r', 't', or 'v',
  345.                  then the ANSI-C interpretation of \\x.
  346.                  Otherwise, a literal 'X' (used to escape
  347.                  operators such as '*')
  348.     \\123       the character with octal value 123
  349.     \\x2a       the character with hexadecimal value 2a
  350.     (r)        match an r; parentheses are used to override
  351.                  precedence (see below)
  352.  
  353.  
  354.     rs         the regular expression r followed by the
  355.                  regular expression s; called "concatenation"
  356.  
  357.  
  358.     r|s        either an r or an s
  359.  
  360.  
  361.     r/s        an r but only if it is followed by an s.  The
  362.                  s is not part of the matched text.  This type
  363.                  of pattern is called as "trailing context".
  364.     ^r         an r, but only at the beginning of a line
  365.     r$         an r, but only at the end of a line.  Equivalent
  366.                  to "r/\\n".
  367.  
  368.  
  369.     <s>r       an r, but only in start condition s (see
  370.                below for discussion of start conditions)
  371.     <s1,s2,s3>r
  372.                same, but in any of start conditions s1,
  373.                s2, or s3
  374.  
  375.  
  376.     <<EOF>>    an end-of-file
  377.     <s1,s2><<EOF>>
  378.                an end-of-file when in start condition s1 or s2
  379.  
  380. .fi
  381. The regular expressions listed above are grouped according to
  382. precedence, from highest precedence at the top to lowest at the bottom.
  383. Those grouped together have equal precedence.
  384. .LP
  385. Some notes on patterns:
  386. .IP -
  387. Negated character classes
  388. .I match newlines
  389. unless "\\n" (or an equivalent escape sequence) is one of the
  390. characters explicitly present in the negated character class
  391. (e.g., "[^A-Z\\n]").
  392. .IP -
  393. A rule can have at most one instance of trailing context (the '/' operator
  394. or the '$' operator).  The start condition, '^', and "<<EOF>>" patterns
  395. can only occur at the beginning of a pattern, and, as well as with '/' and '$',
  396. cannot be grouped inside parentheses.  The following are all illegal:
  397. .nf
  398.  
  399.     foo/bar$
  400.     foo|(bar$)
  401.     foo|^bar
  402.     <sc1>foo<sc2>bar
  403.  
  404. .fi
  405. .SH SUMMARY OF SPECIAL ACTIONS
  406. In addition to arbitrary C code, the following can appear in actions:
  407. .IP -
  408. .B ECHO
  409. copies yytext to the scanner's output.
  410. .IP -
  411. .B BEGIN
  412. followed by the name of a start condition places the scanner in the
  413. corresponding start condition.
  414. .IP -
  415. .B REJECT
  416. directs the scanner to proceed on to the "second best" rule which matched the
  417. input (or a prefix of the input).
  418. .B yytext
  419. and
  420. .B yyleng
  421. are set up appropriately.  Note that
  422. .B REJECT
  423. is a particularly expensive feature in terms scanner performance;
  424. if it is used in
  425. .I any
  426. of the scanner's actions it will slow down
  427. .I all
  428. of the scanner's matching.  Furthermore,
  429. .B REJECT
  430. cannot be used with the
  431. .I -f
  432. or
  433. .I -F
  434. options.
  435. .IP
  436. Note also that unlike the other special actions,
  437. .B REJECT
  438. is a
  439. .I branch;
  440. code immediately following it in the action will
  441. .I not
  442. be executed.
  443. .IP -
  444. .B yymore()
  445. tells the scanner that the next time it matches a rule, the corresponding
  446. token should be
  447. .I appended
  448. onto the current value of
  449. .B yytext
  450. rather than replacing it.
  451. .IP -
  452. .B yyless(n)
  453. returns all but the first
  454. .I n
  455. characters of the current token back to the input stream, where they
  456. will be rescanned when the scanner looks for the next match.
  457. .B yytext
  458. and
  459. .B yyleng
  460. are adjusted appropriately (e.g.,
  461. .B yyleng
  462. will now be equal to
  463. .I n
  464. ).
  465. .IP -
  466. .B unput(c)
  467. puts the character
  468. .I c
  469. back onto the input stream.  It will be the next character scanned.
  470. .IP -
  471. .B input()
  472. reads the next character from the input stream (this routine is called
  473. .B yyinput()
  474. if the scanner is compiled using
  475. .B C++).
  476. .IP -
  477. .B yyterminate()
  478. can be used in lieu of a return statement in an action.  It terminates
  479. the scanner and returns a 0 to the scanner's caller, indicating "all done".
  480. .IP
  481. By default,
  482. .B yyterminate()
  483. is also called when an end-of-file is encountered.  It is a macro and
  484. may be redefined.
  485. .IP -
  486. .B YY_NEW_FILE
  487. is an action available only in <<EOF>> rules.  It means "Okay, I've
  488. set up a new input file, continue scanning".
  489. .IP -
  490. .B yy_create_buffer( file, size )
  491. takes a
  492. .I FILE
  493. pointer and an integer
  494. .I size.
  495. It returns a YY_BUFFER_STATE
  496. handle to a new input buffer large enough to accomodate
  497. .I size
  498. characters and associated with the given file.  When in doubt, use
  499. .B YY_BUF_SIZE
  500. for the size.
  501. .IP -
  502. .B yy_switch_to_buffer( new_buffer )
  503. switches the scanner's processing to scan for tokens from
  504. the given buffer, which must be a YY_BUFFER_STATE.
  505. .IP -
  506. .B yy_delete_buffer( buffer )
  507. deletes the given buffer.
  508. .SH VALUES AVAILABLE TO THE USER
  509. .IP -
  510. .B char *yytext
  511. holds the text of the current token.  It may not be modified.
  512. .IP -
  513. .B int yyleng
  514. holds the length of the current token.  It may not be modified.
  515. .IP -
  516. .B FILE *yyin
  517. is the file which by default
  518. .I flex
  519. reads from.  It may be redefined but doing so only makes sense before
  520. scanning begins.  Changing it in the middle of scanning will have
  521. unexpected results since
  522. .I flex
  523. buffers its input.  Once scanning terminates because an end-of-file
  524. has been seen,
  525. .B
  526. void yyrestart( FILE *new_file )
  527. may be called to point
  528. .I yyin
  529. at the new input file.
  530. .IP -
  531. .B FILE *yyout
  532. is the file to which
  533. .B ECHO
  534. actions are done.  It can be reassigned by the user.
  535. .IP -
  536. .B YY_CURRENT_BUFFER
  537. returns a
  538. .B YY_BUFFER_STATE
  539. handle to the current buffer.
  540. .SH MACROS THE USER CAN REDEFINE
  541. .IP -
  542. .B YY_DECL
  543. controls how the scanning routine is declared.
  544. By default, it is "int yylex()", or, if prototypes are being
  545. used, "int yylex(void)".  This definition may be changed by redefining
  546. the "YY_DECL" macro.  Note that
  547. if you give arguments to the scanning routine using a
  548. K&R-style/non-prototyped function declaration, you must terminate
  549. the definition with a semi-colon (;).
  550. .IP -
  551. The nature of how the scanner
  552. gets its input can be controlled by redefining the
  553. .B YY_INPUT
  554. macro.
  555. YY_INPUT's calling sequence is "YY_INPUT(buf,result,max_size)".  Its
  556. action is to place up to
  557. .I max_size
  558. characters in the character array
  559. .I buf
  560. and return in the integer variable
  561. .I result
  562. either the
  563. number of characters read or the constant YY_NULL (0 on Unix systems)
  564. to indicate EOF.  The default YY_INPUT reads from the
  565. global file-pointer "yyin".
  566. A sample redefinition of YY_INPUT (in the definitions
  567. section of the input file):
  568. .nf
  569.  
  570.     %{
  571.     #undef YY_INPUT
  572.     #define YY_INPUT(buf,result,max_size) \\
  573.         { \\
  574.         int c = getchar(); \\
  575.         result = (c == EOF) ? YY_NULL : (buf[0] = c, 1); \\
  576.         }
  577.     %}
  578.  
  579. .fi
  580. .IP -
  581. When the scanner receives an end-of-file indication from YY_INPUT,
  582. it then checks the
  583. .B yywrap()
  584. function.  If
  585. .B yywrap()
  586. returns false (zero), then it is assumed that the
  587. function has gone ahead and set up
  588. .I yyin
  589. to point to another input file, and scanning continues.  If it returns
  590. true (non-zero), then the scanner terminates, returning 0 to its
  591. caller.
  592. .IP
  593. The default
  594. .B yywrap()
  595. always returns 1.  Presently, to redefine it you must first
  596. "#undef yywrap", as it is currently implemented as a macro.  It is
  597. likely that
  598. .B yywrap()
  599. will soon be defined to be a function rather than a macro.
  600. .IP -
  601. YY_USER_ACTION
  602. can be redefined to provide an action
  603. which is always executed prior to the matched rule's action.
  604. .IP -
  605. The macro
  606. .B YY_USER_INIT
  607. may be redefined to provide an action which is always executed before
  608. the first scan.
  609. .IP -
  610. In the generated scanner, the actions are all gathered in one large
  611. switch statement and separated using
  612. .B YY_BREAK,
  613. which may be redefined.  By default, it is simply a "break", to separate
  614. each rule's action from the following rule's.
  615. .SH FILES
  616. .TP
  617. .I flex.skel
  618. skeleton scanner.
  619. .TP
  620. .I lex.yy.c
  621. generated scanner (called
  622. .I lexyy.c
  623. on some systems).
  624. .TP
  625. .I lex.backtrack
  626. backtracking information for
  627. .B -b
  628. flag (called
  629. .I lex.bck
  630. on some systems).
  631. .TP
  632. .B -lfl
  633. library with which to link the scanners.
  634. .SH "SEE ALSO"
  635. .LP
  636. flexdoc(1), lex(1), yacc(1), sed(1), awk(1).
  637. .LP
  638. M. E. Lesk and E. Schmidt,
  639. .I LEX - Lexical Analyzer Generator
  640. .SH DIAGNOSTICS
  641. .I reject_used_but_not_detected undefined
  642. or
  643. .LP
  644. .I yymore_used_but_not_detected undefined -
  645. These errors can occur at compile time.  They indicate that the
  646. scanner uses
  647. .B REJECT
  648. or
  649. .B yymore()
  650. but that
  651. .I flex
  652. failed to notice the fact, meaning that
  653. .I flex
  654. scanned the first two sections looking for occurrences of these actions
  655. and failed to find any, but somehow you snuck some in (via a #include
  656. file, for example).  Make an explicit reference to the action in your
  657. .I flex
  658. input file.  (Note that previously
  659. .I flex
  660. supported a
  661. .B %used/%unused
  662. mechanism for dealing with this problem; this feature is still supported
  663. but now deprecated, and will go away soon unless the author hears from
  664. people who can argue compellingly that they need it.)
  665. .LP
  666. .I flex scanner jammed -
  667. a scanner compiled with
  668. .B -s
  669. has encountered an input string which wasn't matched by
  670. any of its rules.
  671. .LP
  672. .I flex input buffer overflowed -
  673. a scanner rule matched a string long enough to overflow the
  674. scanner's internal input buffer (16K bytes - controlled by
  675. .B YY_BUF_MAX
  676. in "flex.skel").
  677. .LP
  678. .I scanner requires -8 flag -
  679. Your scanner specification includes recognizing 8-bit characters and
  680. you did not specify the -8 flag (and your site has not installed flex
  681. with -8 as the default).
  682. .LP
  683. .I
  684. fatal flex scanner internal error--end of buffer missed -
  685. This can occur in an scanner which is reentered after a long-jump
  686. has jumped out (or over) the scanner's activation frame.  Before
  687. reentering the scanner, use:
  688. .nf
  689.  
  690.     yyrestart( yyin );
  691.  
  692. .fi
  693. .LP
  694. .I too many %t classes! -
  695. You managed to put every single character into its own %t class.
  696. .I flex
  697. requires that at least one of the classes share characters.
  698. .SH AUTHOR
  699. Vern Paxson, with the help of many ideas and much inspiration from
  700. Van Jacobson.  Original version by Jef Poskanzer.
  701. .LP
  702. See flexdoc(1) for additional credits and the address to send comments to.
  703. .SH DEFICIENCIES / BUGS
  704. .LP
  705. Some trailing context
  706. patterns cannot be properly matched and generate
  707. warning messages ("Dangerous trailing context").  These are
  708. patterns where the ending of the
  709. first part of the rule matches the beginning of the second
  710. part, such as "zx*/xy*", where the 'x*' matches the 'x' at
  711. the beginning of the trailing context.  (Note that the POSIX draft
  712. states that the text matched by such patterns is undefined.)
  713. .LP
  714. For some trailing context rules, parts which are actually fixed-length are
  715. not recognized as such, leading to the abovementioned performance loss.
  716. In particular, parts using '|' or {n} (such as "foo{3}") are always
  717. considered variable-length.
  718. .LP
  719. Combining trailing context with the special '|' action can result in
  720. .I fixed
  721. trailing context being turned into the more expensive
  722. .I variable
  723. trailing context.  For example, this happens in the following example:
  724. .nf
  725.  
  726.     %%
  727.     abc      |
  728.     xyz/def
  729.  
  730. .fi
  731. .LP
  732. Use of unput() invalidates yytext and yyleng.
  733. .LP
  734. Use of unput() to push back more text than was matched can
  735. result in the pushed-back text matching a beginning-of-line ('^')
  736. rule even though it didn't come at the beginning of the line
  737. (though this is rare!).
  738. .LP
  739. Pattern-matching of NUL's is substantially slower than matching other
  740. characters.
  741. .LP
  742. .I flex
  743. does not generate correct #line directives for code internal
  744. to the scanner; thus, bugs in
  745. .I flex.skel
  746. yield bogus line numbers.
  747. .LP
  748. Due to both buffering of input and read-ahead, you cannot intermix
  749. calls to <stdio.h> routines, such as, for example,
  750. .B getchar(),
  751. with
  752. .I flex
  753. rules and expect it to work.  Call
  754. .B input()
  755. instead.
  756. .LP
  757. The total table entries listed by the
  758. .B -v
  759. flag excludes the number of table entries needed to determine
  760. what rule has been matched.  The number of entries is equal
  761. to the number of DFA states if the scanner does not use
  762. .B REJECT,
  763. and somewhat greater than the number of states if it does.
  764. .LP
  765. .B REJECT
  766. cannot be used with the
  767. .I -f
  768. or
  769. .I -F
  770. options.
  771. .LP
  772. Some of the macros, such as
  773. .B yywrap(),
  774. may in the future become functions which live in the
  775. .B -lfl
  776. library.  This will doubtless break a lot of code, but may be
  777. required for POSIX-compliance.
  778. .LP
  779. The
  780. .I flex
  781. internal algorithms need documentation.
  782.